0byt3m1n1
Path:
/
data
/
7
/
0
/
53
/
79
/
379894
/
meta
/
386699
/
mysql.backup
/
[
Home
]
File: 1_004c356_0.mysqlcluster26.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster26 Database: 1_004c356_0 -- ------------------------------------------------------ -- Server version 5.6.50-90.0-56-log /*!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_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)) ) 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-03-10 20:15:34','2021-03-10 20:15:34','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_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_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=225 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','http://irreplaceableartifacts.com/iawp','yes'),(2,'home','http://irreplaceableartifacts.com/iawp','yes'),(3,'blogname','Irreplaceable Artifacts','yes'),(4,'blogdescription','The Finest in Architectural Ornaments','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','photos@demolitiondepot.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','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','m/d/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','/%postname%/','yes'),(29,'rewrite_rules','a:101:{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:46:\"category/(.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:55:\"index.php?category_name=$matches[1]&flpaged=$matches[2]\";s:43:\"tag/([^/]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:45:\"index.php?tag=$matches[1]&flpaged=$matches[2]\";s:42:\"([0-9]{4})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:46:\"index.php?year=$matches[1]&flpaged=$matches[2]\";s:55:\"([0-9]{4})/([0-9]{1,2})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&flpaged=$matches[3]\";s:68:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&flpaged=$matches[4]\";s:46:\"author/([^/]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:53:\"index.php?author_name=$matches[1]&flpaged=$matches[2]\";s:40:\"([0-9]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:43:\"index.php?p=$matches[1]&flpaged=$matches[2]\";s:39:\"(.?.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:50:\"index.php?pagename=$matches[1]&flpaged=$matches[2]\";s:37:\"(.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:46:\"index.php?name=$matches[1]&flpaged=$matches[2]\";s:31:\"paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:30:\"index.php?&flpaged=$matches[1]\";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: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: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: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: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: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: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: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: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: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:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";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:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:28:\"bbpowerpack/bb-powerpack.php\";i:1;s:42:\"beaver-builder-lite-version/fl-builder.php\";i:2;s:41:\"wordpress-importer/wordpress-importer.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','astra','yes'),(41,'stylesheet','astra','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','49752','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','posts','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:0:{}','no'),(80,'timezone_string','America/New_York','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','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','1630959334','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:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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: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;}}}','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:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";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:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:13:{i:1621926935;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:1621929791;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"9009088b2ab6f9f0dd1e36df2da38ce7\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:13;}}}}i:1621929832;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"78525e41f5c2848ff7e1a2337fb96361\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:14;}}}}i:1621929889;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"64fe7e19c11c6aa5ae4105b856a866cd\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:15;}}}}i:1621930309;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"dd07e4db14c3f5ea561b3bed7428c6ab\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:16;}}}}i:1621930535;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:1621973735;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:1622002121;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:1622002795;a:1:{s:30:\"fl_builder_notifications_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1622010101;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"45f91c1ee81280c48cfb715d2c9931b0\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:19;}}}}i:1622010440;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:1622146535;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;}}}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:1621829681;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:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(133,'_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.7.2.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.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1621923210;s:15:\"version_checked\";s:5:\"5.7.2\";s:12:\"translations\";a:0:{}}','no'),(135,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:26:\"photos@demolitiondepot.com\";s:7:\"version\";s:5:\"5.7.2\";s:9:\"timestamp\";i:1621829253;}','no'),(136,'_site_transient_timeout_browser_a510f07700847945031e793207ee1b90','1622434059','no'),(137,'_site_transient_browser_a510f07700847945031e793207ee1b90','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"90.0.4430.212\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(138,'_site_transient_timeout_php_check_7bd88c463d18d1395429260aa0d9ef54','1622434059','no'),(139,'_site_transient_php_check_7bd88c463d18d1395429260aa0d9ef54','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(140,'_transient_health-check-site-status-result','{\"good\":\"12\",\"recommended\":\"4\",\"critical\":\"0\"}','yes'),(153,'can_compress_scripts','1','no'),(156,'finished_updating_comment_type','1','yes'),(161,'current_theme','Astra','yes'),(162,'theme_mods_astra','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(163,'theme_switched','','yes'),(164,'astra-settings','a:3:{s:18:\"theme-auto-version\";s:5:\"3.4.6\";s:22:\"is_theme_queue_running\";b:0;s:33:\"_astra_pb_compatibility_completed\";b:1;}','yes'),(168,'astra_partials_config_cache','a:2:{s:8:\"settings\";a:667:{s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:29:\"astra-settings[button-radius]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:40;s:6:\"bottom\";i:10;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[display-site-title]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-site-title-tagline-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[display-site-tagline]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:5:\"image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:12:\"single-image\";i:1;s:17:\"single-title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[blog-single-meta]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[related-posts-grid]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-design-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:50:\"astra-settings[related-posts-title-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-line-height]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:58:\"astra-settings[related-posts-section-title-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:49:\"astra-settings[related-posts-meta-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:52:\"astra-settings[related-posts-content-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:13:\"right-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-content-layout]\";a:4:{s:7:\"default\";s:23:\"content-boxed-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-container-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:7:\"#0274be\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:7:\"#0274be\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-blog-typography-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:47:\"astra-settings[font-size-archive-summary-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:35:\"astra-settings[body-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:39:\"astra-settings[headings-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[divider-section-h1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[divider-section-h2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[divider-section-h3]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:25;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[divider-section-h4]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[divider-section-h5]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[divider-section-h6]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-content-typography-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-sngle-blog-typography-more-feature-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:37:\"astra-settings[font-size-entry-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-disable-archive]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[transparent-header-widget-link-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-widget-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[transparent-header-widget-content-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-widget-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-widget-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:41:\"astra-settings[breadcrumb-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:33:\"astra-settings[text-transform-h3]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[line-height-h3]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[text-transform-button]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[theme-btn-line-height]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-btn-letter-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-above-header-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-above-header-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-below-header-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-below-header-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-header-widget-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-header-widget-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-header-widget-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-header-widget-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[mobile-header-toggle-border-radius]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:70;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:58:\"astra-settings[section-primary-header-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-primary-header-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[title_tagline-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[title_tagline-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-button1-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-hb-button-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-hb-button-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-html-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-html-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-html-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-html-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-menu-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-menu-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-menu1-submenu-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:43:\"astra-settings[header-menu1-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[section-hb-menu-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-hb-menu-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-menu2-submenu-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:43:\"astra-settings[header-menu2-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-search-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[section-header-search-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:51:\"http://irreplaceableartifacts.com/iawp/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[section-header-account-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[section-header-account-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-hb-social-icons-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-hb-social-icons-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[header-social-1-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:49:\"astra-settings[header-mobile-menu-text-transform]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-line-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[section-header-mobile-menu-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-header-mobile-menu-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-above-footer-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-above-footer-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-above-footer-builder-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:80;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-below-footer-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[section-below-footer-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-below-footer-builder-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-footer-copyright-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-footer-copyright-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-copyright-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-menu-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-menu-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-footer-menu-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-fb-social-icons-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-fb-social-icons-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-fb-social-icons-1-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-social-1-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:7:\"#e6e6e6\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:58:\"astra-settings[section-primary-footer-builder-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-primary-footer-builder-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-primary-footer-builder-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[section-fb-html-1-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-fb-html-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[section-fb-html-2-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-1-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-1-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[sidebar-widgets-footer-widget-1-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-2-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-2-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[sidebar-widgets-footer-widget-2-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-3-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-3-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[sidebar-widgets-footer-widget-3-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-4-hide-tablet]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[sidebar-widgets-footer-widget-4-hide-mobile]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[sidebar-widgets-footer-widget-4-hide-desktop]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:39:{s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[display-site-title]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[display-site-tagline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:8:\"selector\";s:9:\"#masthead\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:21:\"header_builder_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:8:\"selector\";s:9:\"#masthead\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:21:\"header_builder_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5403;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:25:\"astra-settings[hba-stack]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:24:\"astra-settings[hb-stack]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:5424;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}','no'),(173,'WPLANG','','yes'),(174,'new_admin_email','photos@demolitiondepot.com','yes'),(179,'recently_activated','a:0:{}','yes'),(187,'_fl_builder_version','2.4.2.2','no'),(188,'_fl_builder_enabled_modules','a:11:{i:0;s:3:\"all\";i:1;s:5:\"audio\";i:2;s:6:\"button\";i:3;s:4:\"html\";i:4;s:7:\"heading\";i:5;s:4:\"icon\";i:6;s:5:\"photo\";i:7;s:7:\"sidebar\";i:8;s:9:\"rich-text\";i:9;s:5:\"video\";i:10;s:6:\"widget\";}','yes'),(189,'fl_builder_usage_enabled','0','no'),(197,'_transient_timeout_astra-theme-cron-test-ok','1621925372','no'),(198,'_transient_astra-theme-cron-test-ok','1','no'),(202,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1621923211;s:7:\"checked\";a:2:{s:5:\"astra\";s:5:\"3.4.6\";s:14:\"twentynineteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:2:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:5:\"3.4.6\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/astra.3.4.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(203,'_transient_timeout_astra-theme-db-migrated','1621925928','no'),(204,'_transient_astra-theme-db-migrated','a:1:{i:0;b:0;}','no'),(205,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1621933129','no'),(206,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:4907;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4767;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2714;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2592;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2000;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1856;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1835;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1515;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1504;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1498;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1491;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1479;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1470;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1311;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1261;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1250;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1230;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1151;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1125;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1054;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:951;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:929;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:908;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:886;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:877;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:824;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:818;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:808;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:805;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:782;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:763;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:745;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:726;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:726;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:715;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:713;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:680;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:679;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:665;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:664;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:661;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:660;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:653;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:648;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:635;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:607;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:598;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:597;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:590;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:590;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:576;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:571;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:566;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:561;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:559;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:557;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:546;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:545;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:545;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:540;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:530;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:519;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:511;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:505;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:502;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:500;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:497;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:494;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:489;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:486;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:477;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:464;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:459;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:456;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:448;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:445;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:445;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:444;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:443;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:442;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:432;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:425;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:420;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:411;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:410;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:408;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:405;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:400;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:393;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:390;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:388;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:380;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:379;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:377;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:371;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:364;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:363;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:356;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:355;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:347;}}','no'),(207,'_site_transient_timeout_popular_importers_09ba74dfb278748ad9d4d35de8cc92d2','1622095253','no'),(208,'_site_transient_popular_importers_09ba74dfb278748ad9d4d35de8cc92d2','a:2:{s:9:\"importers\";a:7:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','no'),(213,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1621923259;s:7:\"checked\";a:4:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:7:\"2.4.2.2\";s:28:\"bbpowerpack/bb-powerpack.php\";s:6:\"2.15.4\";s:41:\"wordpress-importer/wordpress-importer.php\";s:3:\"0.7\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.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:42:\"beaver-builder-lite-version/fl-builder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/beaver-builder-lite-version\";s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:6:\"plugin\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:11:\"new_version\";s:7:\"2.4.2.2\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/beaver-builder-lite-version/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/beaver-builder-lite-version.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/beaver-builder-lite-version/assets/icon-256x256.png?rev=2361183\";s:2:\"1x\";s:80:\"https://ps.w.org/beaver-builder-lite-version/assets/icon-128x128.png?rev=2361183\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:82:\"https://ps.w.org/beaver-builder-lite-version/assets/banner-772x250.jpg?rev=2361183\";}s:11:\"banners_rtl\";a:0:{}}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:3:\"0.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-importer/assets/icon-256x256.png?rev=1908375\";s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(214,'bb_powerpack_templates','a:1:{i:0;s:8:\"disabled\";}','yes'),(215,'bb_powerpack_page_templates','a:1:{i:0;s:8:\"disabled\";}','yes'),(216,'bb_powerpack_templates_reset','1','yes'),(217,'bb_powerpack_license_key','af656ca01000ee986f451d80492aabad','yes'),(219,'bb_powerpack_license_status','valid','yes'),(220,'category_children','a:0:{}','yes'),(221,'_site_transient_timeout_theme_roots','1621925840','no'),(222,'_site_transient_theme_roots','a:2:{s:5:\"astra\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";}','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=171 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,'_customize_draft_post_name','create-your-website-with-blocks'),(4,5,'_customize_changeset_uuid','ffe0bdb5-2ae0-47c8-93d0-2707bb283abd'),(5,6,'_customize_draft_post_name','about'),(6,6,'_customize_changeset_uuid','ffe0bdb5-2ae0-47c8-93d0-2707bb283abd'),(7,7,'_customize_draft_post_name','contact'),(8,7,'_customize_changeset_uuid','ffe0bdb5-2ae0-47c8-93d0-2707bb283abd'),(9,8,'_customize_draft_post_name','blog'),(10,8,'_customize_changeset_uuid','ffe0bdb5-2ae0-47c8-93d0-2707bb283abd'),(17,13,'_wp_attached_file','2021/05/bb-powerpack.zip'),(18,13,'_wp_attachment_context','upgrader'),(19,14,'_wp_attached_file','2021/05/bb-powerpack-1.zip'),(20,14,'_wp_attachment_context','upgrader'),(23,16,'_wp_attached_file','2021/05/bb-powerpack-2.zip'),(24,16,'_wp_attachment_context','upgrader'),(25,1,'_edit_last','1'),(26,1,'_edit_lock','1621923461:1'),(27,2,'_edit_last','1'),(28,2,'_edit_lock','1621923500:1'),(29,2,'_wp_trash_meta_status','publish'),(30,2,'_wp_trash_meta_time','1621923512'),(31,2,'_wp_desired_post_slug','sample-page'),(34,36,'_wp_attached_file','2018/02/IrreplaceableArtifacts_Banner450-e1526628538225.jpg'),(35,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:59:\"2018/02/IrreplaceableArtifacts_Banner450-e1526628538225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"IrreplaceableArtifacts_Banner450-e1526628538225-150x100.jpg\";s:5:\"width\";i:150;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:{}}}'),(36,36,'_wp_attachment_image_alt','IA Logo'),(37,36,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:450;s:6:\"height\";i:150;s:4:\"file\";s:36:\"IrreplaceableArtifacts_Banner450.jpg\";}}'),(38,36,'_edit_last','2'),(39,39,'_wp_attached_file','2018/02/cropped-IA-Logo-Square-800_LR.jpg'),(40,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:41:\"2018/02/cropped-IA-Logo-Square-800_LR.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"cropped-IA-Logo-Square-800_LR-300x300.jpg\";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:41:\"cropped-IA-Logo-Square-800_LR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(41,39,'_wp_attachment_context','site-icon'),(42,56,'_wp_attached_file','2018/02/102167D.jpg'),(43,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:489;s:4:\"file\";s:19:\"2018/02/102167D.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"102167D-300x293.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"102167D-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:9:\"DSLR-A200\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1389983114\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(44,57,'_wp_attached_file','2018/02/102167E.jpg'),(45,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:808;s:4:\"file\";s:19:\"2018/02/102167E.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"102167E-186x300.jpg\";s:5:\"width\";i:186;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"102167E-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:9:\"DSLR-A200\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1389983130\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(46,58,'_wp_attached_file','2018/02/102167-1.jpg'),(47,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:466;s:4:\"file\";s:20:\"2018/02/102167-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"102167-1-300x280.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"102167-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:9:\"DSLR-A200\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1389983035\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(48,59,'_wp_attached_file','2018/02/102167B.jpg'),(49,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:430;s:4:\"file\";s:19:\"2018/02/102167B.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"102167B-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"102167B-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:9:\"DSLR-A200\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1389983120\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(50,60,'_wp_attached_file','2018/02/102167C.jpg'),(51,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:343;s:4:\"file\";s:19:\"2018/02/102167C.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"102167C-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"102167C-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:9:\"DSLR-A200\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1389983124\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(52,65,'_wp_attached_file','2018/05/IA-Logo-Square-800_LR.jpg'),(53,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:33:\"2018/05/IA-Logo-Square-800_LR.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IA-Logo-Square-800_LR-300x300.jpg\";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:33:\"IA-Logo-Square-800_LR-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:33:\"IA-Logo-Square-800_LR-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),(54,65,'_wp_attachment_image_alt','Irreplaceable Artifacts'),(55,66,'_wp_attached_file','2018/05/cropped-IA-Logo-Square-800_LR.jpg'),(56,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:41:\"2018/05/cropped-IA-Logo-Square-800_LR.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"cropped-IA-Logo-Square-800_LR-300x300.jpg\";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:41:\"cropped-IA-Logo-Square-800_LR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(57,66,'_wp_attachment_context','site-icon'),(58,69,'_wp_attached_file','2018/05/irr_artifacts_bannerdesign_v13.jpg'),(59,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:42:\"2018/05/irr_artifacts_bannerdesign_v13.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v13-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"irr_artifacts_bannerdesign_v13-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v13-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:\"irr_artifacts_bannerdesign_v13-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;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:{}}}'),(60,70,'_wp_attached_file','2018/05/irr_artifacts_bannerdesign_v3.jpg'),(61,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:41:\"2018/05/irr_artifacts_bannerdesign_v3.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"irr_artifacts_bannerdesign_v3-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v3-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"irr_artifacts_bannerdesign_v3-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:41:\"irr_artifacts_bannerdesign_v3-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;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:{}}}'),(62,70,'_wp_attachment_is_custom_background','storefront'),(63,71,'_wp_attached_file','2018/05/irr_artifacts_bannerdesign_v09.jpg'),(64,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:42:\"2018/05/irr_artifacts_bannerdesign_v09.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v09-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"irr_artifacts_bannerdesign_v09-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v09-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:\"irr_artifacts_bannerdesign_v09-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;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:{}}}'),(65,72,'_wp_attached_file','2018/05/irr_artifacts_bannerdesign_v10.jpg'),(66,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:42:\"2018/05/irr_artifacts_bannerdesign_v10.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v10-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"irr_artifacts_bannerdesign_v10-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v10-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:\"irr_artifacts_bannerdesign_v10-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;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:{}}}'),(67,73,'_wp_attached_file','2018/05/irr_artifacts_bannerdesign_v11.jpg'),(68,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:42:\"2018/05/irr_artifacts_bannerdesign_v11.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v11-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"irr_artifacts_bannerdesign_v11-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"irr_artifacts_bannerdesign_v11-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:\"irr_artifacts_bannerdesign_v11-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;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:{}}}'),(69,81,'_wp_attached_file','2018/05/cropped-irr_artifacts_bannerdesign_v11.jpg'),(70,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:308;s:4:\"file\";s:50:\"2018/05/cropped-irr_artifacts_bannerdesign_v11.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"cropped-irr_artifacts_bannerdesign_v11-300x77.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"cropped-irr_artifacts_bannerdesign_v11-1024x263.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"cropped-irr_artifacts_bannerdesign_v11-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:50:\"cropped-irr_artifacts_bannerdesign_v11-768x197.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:197;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:{}}}'),(71,81,'_wp_attachment_context','custom-header'),(72,81,'_wp_attachment_custom_header_last_used_storefront','1525761816'),(73,81,'_wp_attachment_is_custom_header','storefront'),(74,86,'_wp_attached_file','2018/05/MCTnew_1282927683_8.jpg'),(75,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:323;s:4:\"file\";s:31:\"2018/05/MCTnew_1282927683_8.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"MCTnew_1282927683_8-300x242.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MCTnew_1282927683_8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:10:\"NIKON D200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1218459884\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(76,87,'_wp_attached_file','2018/05/DD_IA_new_1297358359_8.jpg'),(77,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:336;s:4:\"file\";s:34:\"2018/05/DD_IA_new_1297358359_8.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"DD_IA_new_1297358359_8-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"DD_IA_new_1297358359_8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-TZ3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1218230230\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.6\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(78,119,'_wp_attached_file','2018/05/102437-1.jpg'),(79,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/05/102437-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"102437-1-300x300.jpg\";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:22:\"102437-1-1024x1024.jpg\";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:20:\"102437-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:20:\"102437-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),(80,120,'_wp_attached_file','2018/05/102525-1.jpg'),(81,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/05/102525-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"102525-1-300x300.jpg\";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:22:\"102525-1-1024x1024.jpg\";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:20:\"102525-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:20:\"102525-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),(82,121,'_wp_attached_file','2018/05/101502-1.jpg'),(83,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/05/101502-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"101502-1-300x300.jpg\";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:22:\"101502-1-1024x1024.jpg\";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:20:\"101502-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:20:\"101502-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),(84,122,'_wp_page_template','default'),(85,122,'_fl_builder_data_back',''),(86,122,'_fl_builder_draft_back',''),(87,122,'_uabb_lite_converted','yes'),(88,122,'_wp_trash_meta_status','publish'),(89,122,'_wp_trash_meta_time','1621828270'),(90,122,'_wp_desired_post_slug','sample-page'),(91,29,'_edit_last','2'),(92,29,'wptr_hide_title','1'),(93,29,'_yoast_wpseo_content_score','30'),(94,29,'_wp_trash_meta_status','publish'),(95,29,'_wp_trash_meta_time','1621828270'),(96,29,'_wp_desired_post_slug','online-store'),(97,30,'_yoast_wpseo_post_image_cache','a:0:{}'),(98,30,'_fl_builder_data_back',''),(99,30,'_fl_builder_draft_back',''),(100,30,'_uabb_lite_converted','yes'),(101,30,'_wp_trash_meta_status','publish'),(102,30,'_wp_trash_meta_time','1621828270'),(103,30,'_wp_desired_post_slug','cart'),(104,31,'_fl_builder_data_back',''),(105,31,'_fl_builder_draft_back',''),(106,31,'_uabb_lite_converted','yes'),(107,31,'_wp_trash_meta_status','publish'),(108,31,'_wp_trash_meta_time','1621828270'),(109,31,'_wp_desired_post_slug','checkout'),(110,32,'_fl_builder_data_back',''),(111,32,'_fl_builder_draft_back',''),(112,32,'_uabb_lite_converted','yes'),(113,32,'_wp_trash_meta_status','publish'),(114,32,'_wp_trash_meta_time','1621828270'),(115,32,'_wp_desired_post_slug','my-account'),(116,47,'_edit_last','2'),(117,47,'_wp_page_template','default'),(118,47,'_fl_builder_draft','a:4:{s:13:\"5af1567b30dbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1567b30dbc\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":136:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";a:2:{s:6:\"family\";s:8:\"Defaults\";s:6:\"weight\";s:8:\"Defaults\";}s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";i:100;s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";i:100;s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5af16560a6743\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a6743\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af1567b30dbc\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af16560a683c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a683c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af16560a6743\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af16560a66ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a66ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af16560a683c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:17:\"[ninja_form id=1]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}}'),(119,47,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(120,47,'_fl_builder_data','a:4:{s:13:\"5af1567b30dbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1567b30dbc\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":136:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";a:2:{s:6:\"family\";s:8:\"Defaults\";s:6:\"weight\";s:8:\"Defaults\";}s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";i:100;s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";i:100;s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5af16560a6743\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a6743\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af1567b30dbc\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af16560a683c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a683c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af16560a6743\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af16560a66ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a66ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af16560a683c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:17:\"[ninja_form id=1]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}}'),(121,47,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(122,47,'_fl_builder_enabled','1'),(123,47,'_yoast_wpseo_post_image_cache','a:0:{}'),(124,47,'_fl_builder_data_back','a:4:{s:13:\"5af1567b30dbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1567b30dbc\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":136:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";a:2:{s:6:\"family\";s:8:\"Defaults\";s:6:\"weight\";s:8:\"Defaults\";}s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";i:100;s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";i:100;s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5af16560a6743\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a6743\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af1567b30dbc\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af16560a683c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a683c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af16560a6743\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af16560a66ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a66ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af16560a683c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:17:\"[ninja_form id=1]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}}'),(125,47,'_fl_builder_draft_back','a:4:{s:13:\"5af1567b30dbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1567b30dbc\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":136:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";a:2:{s:6:\"family\";s:8:\"Defaults\";s:6:\"weight\";s:8:\"Defaults\";}s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";i:100;s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";i:100;s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5af16560a6743\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a6743\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af1567b30dbc\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af16560a683c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a683c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af16560a6743\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af16560a66ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a66ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af16560a683c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:17:\"[ninja_form id=1]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}}'),(126,47,'_uabb_lite_converted','yes'),(127,49,'_edit_last','2'),(128,49,'_wp_page_template','default'),(129,49,'_fl_builder_draft','a:4:{s:13:\"5af14ef6b68a7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b68a7\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af14ef6eaad1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eaad1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af14ef6b68a7\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af14ef6eabbf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eabbf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af14ef6eaad1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af14ef6b676b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b676b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af14ef6eabbf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:5982:\"<h1><strong><span style=\"font-size: 26px;\">SERVICES</span></strong></h1><br /><strong>Personal Consultation</strong><br /><br />Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".<br /><br /><strong>Retrofitting and Restoration</strong><br /><br />Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.<br /><br /><strong>Acquisitions and Reclamations</strong><br /><br />Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.<br /><br />Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.<br /><br /><strong>Dismantling Services</strong><br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />We had only 3½ days to get everything out of this house including saving some pieces for the owners.<br /><br />Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT<br /><br /><strong>Sales & Liquidations & Deaccessions</strong><br /><br />Many times-over the years-we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?<br /><br />Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.<br /><br /><strong>Replications and Reproductions</strong><br /><br />We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.<br /><br />We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525763831507_text\";s:0:\"\";}}}'),(130,49,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(131,49,'_fl_builder_data','a:4:{s:13:\"5af14ef6b68a7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b68a7\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af14ef6eaad1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eaad1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af14ef6b68a7\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af14ef6eabbf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eabbf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af14ef6eaad1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af14ef6b676b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b676b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af14ef6eabbf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:5982:\"<h1><strong><span style=\"font-size: 26px;\">SERVICES</span></strong></h1><br /><strong>Personal Consultation</strong><br /><br />Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".<br /><br /><strong>Retrofitting and Restoration</strong><br /><br />Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.<br /><br /><strong>Acquisitions and Reclamations</strong><br /><br />Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.<br /><br />Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.<br /><br /><strong>Dismantling Services</strong><br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />We had only 3½ days to get everything out of this house including saving some pieces for the owners.<br /><br />Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT<br /><br /><strong>Sales & Liquidations & Deaccessions</strong><br /><br />Many times-over the years-we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?<br /><br />Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.<br /><br /><strong>Replications and Reproductions</strong><br /><br />We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.<br /><br />We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525763831507_text\";s:0:\"\";}}}'),(132,49,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(133,49,'_fl_builder_enabled','1'),(134,49,'_yoast_wpseo_post_image_cache','a:0:{}'),(135,49,'_fl_builder_data_back','a:4:{s:13:\"5af14ef6b68a7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b68a7\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af14ef6eaad1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eaad1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af14ef6b68a7\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af14ef6eabbf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eabbf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af14ef6eaad1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af14ef6b676b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b676b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af14ef6eabbf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:5982:\"<h1><strong><span style=\"font-size: 26px;\">SERVICES</span></strong></h1><br /><strong>Personal Consultation</strong><br /><br />Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".<br /><br /><strong>Retrofitting and Restoration</strong><br /><br />Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.<br /><br /><strong>Acquisitions and Reclamations</strong><br /><br />Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.<br /><br />Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.<br /><br /><strong>Dismantling Services</strong><br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />We had only 3½ days to get everything out of this house including saving some pieces for the owners.<br /><br />Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT<br /><br /><strong>Sales & Liquidations & Deaccessions</strong><br /><br />Many times-over the years-we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?<br /><br />Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.<br /><br /><strong>Replications and Reproductions</strong><br /><br />We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.<br /><br />We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525763831507_text\";s:0:\"\";}}}'),(136,49,'_fl_builder_draft_back','a:4:{s:13:\"5af14ef6b68a7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b68a7\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af14ef6eaad1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eaad1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af14ef6b68a7\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af14ef6eabbf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eabbf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af14ef6eaad1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af14ef6b676b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b676b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af14ef6eabbf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:5982:\"<h1><strong><span style=\"font-size: 26px;\">SERVICES</span></strong></h1><br /><strong>Personal Consultation</strong><br /><br />Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".<br /><br /><strong>Retrofitting and Restoration</strong><br /><br />Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.<br /><br /><strong>Acquisitions and Reclamations</strong><br /><br />Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.<br /><br />Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.<br /><br /><strong>Dismantling Services</strong><br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />We had only 3½ days to get everything out of this house including saving some pieces for the owners.<br /><br />Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT<br /><br /><strong>Sales & Liquidations & Deaccessions</strong><br /><br />Many times-over the years-we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?<br /><br />Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.<br /><br /><strong>Replications and Reproductions</strong><br /><br />We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.<br /><br />We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525763831507_text\";s:0:\"\";}}}'),(137,49,'_uabb_lite_converted','yes'),(138,51,'_edit_last','2'),(139,51,'_wp_page_template','default'),(140,51,'_fl_builder_draft','a:15:{s:13:\"5af15042c2065\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042c2065\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af15042dfefa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042dfefa\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5af15042e003d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042e003d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15042dfefa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af15082de046\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de046\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af15082de243\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de243\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:4:\"size\";d:50;s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:16:\"pp_round_corners\";a:4:{s:8:\"top_left\";s:1:\"0\";s:9:\"top_right\";s:1:\"0\";s:11:\"bottom_left\";s:1:\"0\";s:12:\"bottom_right\";s:1:\"0\";}s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";}}s:13:\"5af15082de24e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de24e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5af150de62a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150de62a7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:263:\"<h1 style=\"text-align: center; font-size: 20px; font-weight: 600;\">Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">428 Main Street<br />Middletown, CT 06457<br />Tel: 860-344-8576<br />Fax: 860-638-0834<br />info@irreplaceableartifacts.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"30\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764318832_text\";s:0:\"\";s:24:\"flrich1525764694016_text\";s:0:\"\";s:24:\"flrich1525765226432_text\";s:0:\"\";s:24:\"flrich1525765456763_text\";s:0:\"\";s:24:\"flrich1525765608262_text\";s:0:\"\";s:24:\"flrich1526628402690_text\";s:0:\"\";}}s:13:\"5af150fb0b573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150fb0b573\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:326:\"<h1 style=\"text-align: center;font-size: 20px;font-weight:600;\">The Demolition Depot & Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">216 East 125th Street<br />(between 2nd & 3rd Avenues)<br />New York, NY 10035-1738<br />Tel: 212-777-2900<br />Fax: 212-860-1560<br />info@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764347529_text\";s:0:\"\";s:24:\"flrich1525764357906_text\";s:0:\"\";s:24:\"flrich1525764684588_text\";s:0:\"\";s:24:\"flrich1525765206481_text\";s:0:\"\";s:24:\"flrich1525765358054_text\";s:0:\"\";s:24:\"flrich1525765571424_text\";s:0:\"\";}}s:13:\"5af1516eee090\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1516eee090\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:334:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Demolition%20Depot%2C%20216%20East%20125th%20Street%2C%20New%20York%2C%20NY&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\n\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af151886ae0d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af151886ae0d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:329:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Irreplaceable%20Artifacts%20428%20Main%20Street%2C%20Middletown%2C%20CT&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af1527617f01\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1527617f01\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15042e003d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:4:\"text\";s:154:\"<p style=\"text-align: center;\">If you are looking to sell or consign an item please send pictures and measurements to acquisitions@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764726598_text\";s:0:\"\";s:24:\"flrich1525764735837_text\";s:0:\"\";}}s:13:\"5af1529a45ff5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1529a45ff5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"86\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:86;s:5:\"title\";s:19:\"MCTnew_1282927683_8\";s:8:\"filename\";s:23:\"MCTnew_1282927683_8.jpg\";s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:4:\"link\";s:55:\"http://localhost/IA.store/location/mctnew_1282927683_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:19:\"mctnew_1282927683_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764797000;s:8:\"modified\";d:1525764797000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41def50b47\";s:6:\"delete\";s:10:\"8a0916e3cc\";s:4:\"edit\";s:10:\"e670eff3eb\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=86&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:58131;s:21:\"filesizeHumanReadable\";s:5:\"57 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:242;s:5:\"width\";i:300;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af152e1357b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af152e1357b5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"87\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:87;s:5:\"title\";s:22:\"DD_IA_new_1297358359_8\";s:8:\"filename\";s:26:\"DD_IA_new_1297358359_8.jpg\";s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:4:\"link\";s:58:\"http://localhost/IA.store/location/dd_ia_new_1297358359_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"dd_ia_new_1297358359_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764800000;s:8:\"modified\";d:1525764800000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5f20a9bc85\";s:6:\"delete\";s:10:\"0ddc603e41\";s:4:\"edit\";s:10:\"5180896580\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=87&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:166576;s:21:\"filesizeHumanReadable\";s:6:\"163 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:252;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af1534d51ad2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1534d51ad2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"15\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}s:13:\"5af1544d5ed6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1544d5ed6d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"05\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}}'),(141,51,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(142,51,'_fl_builder_data','a:15:{s:13:\"5af15042c2065\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042c2065\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af15042dfefa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042dfefa\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5af15042e003d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042e003d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15042dfefa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af15082de046\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de046\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af15082de243\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de243\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:4:\"size\";d:50;s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:16:\"pp_round_corners\";a:4:{s:8:\"top_left\";s:1:\"0\";s:9:\"top_right\";s:1:\"0\";s:11:\"bottom_left\";s:1:\"0\";s:12:\"bottom_right\";s:1:\"0\";}s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";}}s:13:\"5af15082de24e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de24e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5af150de62a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150de62a7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:263:\"<h1 style=\"text-align: center; font-size: 20px; font-weight: 600;\">Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">428 Main Street<br />Middletown, CT 06457<br />Tel: 860-344-8576<br />Fax: 860-638-0834<br />info@irreplaceableartifacts.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"30\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764318832_text\";s:0:\"\";s:24:\"flrich1525764694016_text\";s:0:\"\";s:24:\"flrich1525765226432_text\";s:0:\"\";s:24:\"flrich1525765456763_text\";s:0:\"\";s:24:\"flrich1525765608262_text\";s:0:\"\";s:24:\"flrich1526628402690_text\";s:0:\"\";}}s:13:\"5af150fb0b573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150fb0b573\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:326:\"<h1 style=\"text-align: center;font-size: 20px;font-weight:600;\">The Demolition Depot & Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">216 East 125th Street<br />(between 2nd & 3rd Avenues)<br />New York, NY 10035-1738<br />Tel: 212-777-2900<br />Fax: 212-860-1560<br />info@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764347529_text\";s:0:\"\";s:24:\"flrich1525764357906_text\";s:0:\"\";s:24:\"flrich1525764684588_text\";s:0:\"\";s:24:\"flrich1525765206481_text\";s:0:\"\";s:24:\"flrich1525765358054_text\";s:0:\"\";s:24:\"flrich1525765571424_text\";s:0:\"\";}}s:13:\"5af1516eee090\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1516eee090\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:334:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Demolition%20Depot%2C%20216%20East%20125th%20Street%2C%20New%20York%2C%20NY&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\n\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af151886ae0d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af151886ae0d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:329:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Irreplaceable%20Artifacts%20428%20Main%20Street%2C%20Middletown%2C%20CT&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af1527617f01\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1527617f01\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15042e003d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:4:\"text\";s:154:\"<p style=\"text-align: center;\">If you are looking to sell or consign an item please send pictures and measurements to acquisitions@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764726598_text\";s:0:\"\";s:24:\"flrich1525764735837_text\";s:0:\"\";}}s:13:\"5af1529a45ff5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1529a45ff5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"86\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:86;s:5:\"title\";s:19:\"MCTnew_1282927683_8\";s:8:\"filename\";s:23:\"MCTnew_1282927683_8.jpg\";s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:4:\"link\";s:55:\"http://localhost/IA.store/location/mctnew_1282927683_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:19:\"mctnew_1282927683_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764797000;s:8:\"modified\";d:1525764797000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41def50b47\";s:6:\"delete\";s:10:\"8a0916e3cc\";s:4:\"edit\";s:10:\"e670eff3eb\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=86&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:58131;s:21:\"filesizeHumanReadable\";s:5:\"57 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:242;s:5:\"width\";i:300;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af152e1357b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af152e1357b5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"87\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:87;s:5:\"title\";s:22:\"DD_IA_new_1297358359_8\";s:8:\"filename\";s:26:\"DD_IA_new_1297358359_8.jpg\";s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:4:\"link\";s:58:\"http://localhost/IA.store/location/dd_ia_new_1297358359_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"dd_ia_new_1297358359_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764800000;s:8:\"modified\";d:1525764800000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5f20a9bc85\";s:6:\"delete\";s:10:\"0ddc603e41\";s:4:\"edit\";s:10:\"5180896580\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=87&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:166576;s:21:\"filesizeHumanReadable\";s:6:\"163 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:252;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af1534d51ad2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1534d51ad2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"15\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}s:13:\"5af1544d5ed6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1544d5ed6d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"05\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}}'),(143,51,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(144,51,'_fl_builder_enabled','1'),(145,51,'_yoast_wpseo_post_image_cache','a:2:{s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";i:86;s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";i:87;}'),(146,51,'_fl_builder_data_back','a:15:{s:13:\"5af15042c2065\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042c2065\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af15042dfefa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042dfefa\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5af15042e003d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042e003d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15042dfefa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af15082de046\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de046\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af15082de243\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de243\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:4:\"size\";d:50;s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:16:\"pp_round_corners\";a:4:{s:8:\"top_left\";s:1:\"0\";s:9:\"top_right\";s:1:\"0\";s:11:\"bottom_left\";s:1:\"0\";s:12:\"bottom_right\";s:1:\"0\";}s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";}}s:13:\"5af15082de24e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de24e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5af150de62a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150de62a7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:263:\"<h1 style=\"text-align: center; font-size: 20px; font-weight: 600;\">Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">428 Main Street<br />Middletown, CT 06457<br />Tel: 860-344-8576<br />Fax: 860-638-0834<br />info@irreplaceableartifacts.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"30\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764318832_text\";s:0:\"\";s:24:\"flrich1525764694016_text\";s:0:\"\";s:24:\"flrich1525765226432_text\";s:0:\"\";s:24:\"flrich1525765456763_text\";s:0:\"\";s:24:\"flrich1525765608262_text\";s:0:\"\";s:24:\"flrich1526628402690_text\";s:0:\"\";}}s:13:\"5af150fb0b573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150fb0b573\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:326:\"<h1 style=\"text-align: center;font-size: 20px;font-weight:600;\">The Demolition Depot & Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">216 East 125th Street<br />(between 2nd & 3rd Avenues)<br />New York, NY 10035-1738<br />Tel: 212-777-2900<br />Fax: 212-860-1560<br />info@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764347529_text\";s:0:\"\";s:24:\"flrich1525764357906_text\";s:0:\"\";s:24:\"flrich1525764684588_text\";s:0:\"\";s:24:\"flrich1525765206481_text\";s:0:\"\";s:24:\"flrich1525765358054_text\";s:0:\"\";s:24:\"flrich1525765571424_text\";s:0:\"\";}}s:13:\"5af1516eee090\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1516eee090\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:334:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Demolition%20Depot%2C%20216%20East%20125th%20Street%2C%20New%20York%2C%20NY&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\n\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af151886ae0d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af151886ae0d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:329:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Irreplaceable%20Artifacts%20428%20Main%20Street%2C%20Middletown%2C%20CT&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af1527617f01\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1527617f01\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15042e003d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:4:\"text\";s:154:\"<p style=\"text-align: center;\">If you are looking to sell or consign an item please send pictures and measurements to acquisitions@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764726598_text\";s:0:\"\";s:24:\"flrich1525764735837_text\";s:0:\"\";}}s:13:\"5af1529a45ff5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1529a45ff5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"86\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:86;s:5:\"title\";s:19:\"MCTnew_1282927683_8\";s:8:\"filename\";s:23:\"MCTnew_1282927683_8.jpg\";s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:4:\"link\";s:55:\"http://localhost/IA.store/location/mctnew_1282927683_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:19:\"mctnew_1282927683_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764797000;s:8:\"modified\";d:1525764797000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41def50b47\";s:6:\"delete\";s:10:\"8a0916e3cc\";s:4:\"edit\";s:10:\"e670eff3eb\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=86&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:58131;s:21:\"filesizeHumanReadable\";s:5:\"57 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:242;s:5:\"width\";i:300;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af152e1357b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af152e1357b5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"87\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:87;s:5:\"title\";s:22:\"DD_IA_new_1297358359_8\";s:8:\"filename\";s:26:\"DD_IA_new_1297358359_8.jpg\";s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:4:\"link\";s:58:\"http://localhost/IA.store/location/dd_ia_new_1297358359_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"dd_ia_new_1297358359_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764800000;s:8:\"modified\";d:1525764800000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5f20a9bc85\";s:6:\"delete\";s:10:\"0ddc603e41\";s:4:\"edit\";s:10:\"5180896580\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=87&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:166576;s:21:\"filesizeHumanReadable\";s:6:\"163 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:252;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af1534d51ad2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1534d51ad2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"15\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}s:13:\"5af1544d5ed6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1544d5ed6d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"05\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}}'),(147,51,'_fl_builder_draft_back','a:15:{s:13:\"5af15042c2065\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042c2065\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af15042dfefa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042dfefa\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5af15042e003d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15042e003d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15042dfefa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5af15082de046\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de046\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af15042c2065\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af15082de243\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de243\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:4:\"size\";d:50;s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:16:\"pp_round_corners\";a:4:{s:8:\"top_left\";s:1:\"0\";s:9:\"top_right\";s:1:\"0\";s:11:\"bottom_left\";s:1:\"0\";s:12:\"bottom_right\";s:1:\"0\";}s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";}}s:13:\"5af15082de24e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af15082de24e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af15082de046\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5af150de62a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150de62a7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:263:\"<h1 style=\"text-align: center; font-size: 20px; font-weight: 600;\">Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">428 Main Street<br />Middletown, CT 06457<br />Tel: 860-344-8576<br />Fax: 860-638-0834<br />info@irreplaceableartifacts.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"30\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764318832_text\";s:0:\"\";s:24:\"flrich1525764694016_text\";s:0:\"\";s:24:\"flrich1525765226432_text\";s:0:\"\";s:24:\"flrich1525765456763_text\";s:0:\"\";s:24:\"flrich1525765608262_text\";s:0:\"\";s:24:\"flrich1526628402690_text\";s:0:\"\";}}s:13:\"5af150fb0b573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af150fb0b573\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:4:\"text\";s:326:\"<h1 style=\"text-align: center;font-size: 20px;font-weight:600;\">The Demolition Depot & Irreplaceable Artifacts™</h1><br /><p style=\"text-align: center;\">216 East 125th Street<br />(between 2nd & 3rd Avenues)<br />New York, NY 10035-1738<br />Tel: 212-777-2900<br />Fax: 212-860-1560<br />info@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764347529_text\";s:0:\"\";s:24:\"flrich1525764357906_text\";s:0:\"\";s:24:\"flrich1525764684588_text\";s:0:\"\";s:24:\"flrich1525765206481_text\";s:0:\"\";s:24:\"flrich1525765358054_text\";s:0:\"\";s:24:\"flrich1525765571424_text\";s:0:\"\";}}s:13:\"5af1516eee090\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1516eee090\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:334:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Demolition%20Depot%2C%20216%20East%20125th%20Street%2C%20New%20York%2C%20NY&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\n\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af151886ae0d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af151886ae0d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"html\";s:329:\"<iframe class=\"actAsDiv\" style=\"width:100%;height:100%;\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Irreplaceable%20Artifacts%20428%20Main%20Street%2C%20Middletown%2C%20CT&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}s:13:\"5af1527617f01\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1527617f01\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15042e003d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:4:\"text\";s:154:\"<p style=\"text-align: center;\">If you are looking to sell or consign an item please send pictures and measurements to acquisitions@demolitiondepot.com</p>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525764726598_text\";s:0:\"\";s:24:\"flrich1525764735837_text\";s:0:\"\";}}s:13:\"5af1529a45ff5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1529a45ff5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"86\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:86;s:5:\"title\";s:19:\"MCTnew_1282927683_8\";s:8:\"filename\";s:23:\"MCTnew_1282927683_8.jpg\";s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:4:\"link\";s:55:\"http://localhost/IA.store/location/mctnew_1282927683_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:19:\"mctnew_1282927683_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764797000;s:8:\"modified\";d:1525764797000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41def50b47\";s:6:\"delete\";s:10:\"8a0916e3cc\";s:4:\"edit\";s:10:\"e670eff3eb\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=86&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:58131;s:21:\"filesizeHumanReadable\";s:5:\"57 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:242;s:5:\"width\";i:300;s:3:\"url\";s:84:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:76:\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg\";s:6:\"height\";i:323;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af152e1357b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af152e1357b5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"87\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"10\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"10\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:87;s:5:\"title\";s:22:\"DD_IA_new_1297358359_8\";s:8:\"filename\";s:26:\"DD_IA_new_1297358359_8.jpg\";s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:4:\"link\";s:58:\"http://localhost/IA.store/location/dd_ia_new_1297358359_8/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"dd_ia_new_1297358359_8\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:51;s:4:\"date\";d:1525764800000;s:8:\"modified\";d:1525764800000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:62:\"http://localhost/IA.store/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:11:\"May 8, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5f20a9bc85\";s:6:\"delete\";s:10:\"0ddc603e41\";s:4:\"edit\";s:10:\"5180896580\";}s:8:\"editLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=87&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:5:\"admin\";s:14:\"uploadedToLink\";s:63:\"http://localhost/IA.store/wp-admin/post.php?post=51&action=edit\";s:15:\"uploadedToTitle\";s:8:\"Location\";s:15:\"filesizeInBytes\";i:166576;s:21:\"filesizeHumanReadable\";s:6:\"163 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:252;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg\";s:6:\"height\";i:336;s:5:\"width\";i:400;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5af1534d51ad2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1534d51ad2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de24e\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"15\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}s:13:\"5af1544d5ed6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1544d5ed6d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af15082de243\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:19:\"business_hours_rows\";a:7:{i:0;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Monday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:1;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:7:\"Tuesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:2;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:9:\"Wednesday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:3;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Thursday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:4;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Friday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:5;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:8:\"Saturday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:4:\"open\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"05\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:6:\"Closed\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}i:6;O:8:\"stdClass\":15:{s:1:\"0\";s:0:\"\";s:9:\"highlight\";s:2:\"no\";s:10:\"hours_type\";s:3:\"day\";s:5:\"title\";s:6:\"Sunday\";s:9:\"start_day\";s:6:\"Monday\";s:7:\"end_day\";s:8:\"Saturday\";s:10:\"day_format\";s:4:\"long\";s:6:\"status\";s:5:\"close\";s:10:\"start_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"am\";}s:8:\"end_time\";O:8:\"stdClass\":3:{s:5:\"hours\";s:2:\"06\";s:7:\"minutes\";s:2:\"00\";s:10:\"day_period\";s:2:\"pm\";}s:11:\"status_text\";s:27:\"by appointment or by chance\";s:15:\"hl_row_bg_color\";s:0:\"\";s:14:\"hl_title_color\";s:0:\"\";s:15:\"hl_timing_color\";s:0:\"\";s:15:\"hl_status_color\";s:0:\"\";}}s:7:\"spacing\";s:2:\"10\";s:13:\"zebra_pattern\";s:2:\"no\";s:14:\"row_bg_color_1\";s:0:\"\";s:14:\"row_bg_color_2\";s:0:\"\";s:9:\"separator\";s:2:\"no\";s:15:\"separator_style\";s:5:\"solid\";s:15:\"separator_width\";s:1:\"1\";s:15:\"separator_color\";s:0:\"\";s:12:\"box_bg_color\";s:0:\"\";s:10:\"box_border\";s:4:\"none\";s:16:\"box_border_width\";s:1:\"1\";s:16:\"box_border_color\";s:0:\"\";s:18:\"box_shadow_display\";s:2:\"no\";s:10:\"box_shadow\";a:4:{s:8:\"vertical\";s:1:\"2\";s:10:\"horizontal\";s:1:\"2\";s:4:\"blur\";s:1:\"2\";s:6:\"spread\";s:1:\"1\";}s:16:\"box_shadow_color\";s:6:\"000000\";s:18:\"box_shadow_opacity\";s:2:\"50\";s:17:\"box_border_radius\";s:1:\"0\";s:10:\"title_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:15:\"title_font_size\";s:7:\"default\";s:22:\"title_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:17:\"title_line_height\";s:7:\"default\";s:24:\"title_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"title_text_transform\";s:7:\"default\";s:11:\"title_color\";s:0:\"\";s:11:\"timing_font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:16:\"timing_font_size\";s:7:\"default\";s:23:\"timing_custom_font_size\";a:3:{s:7:\"desktop\";s:2:\"24\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"timing_line_height\";s:7:\"default\";s:25:\"timing_custom_line_height\";a:3:{s:7:\"desktop\";s:3:\"1.6\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"timing_text_transform\";s:7:\"default\";s:12:\"timing_color\";s:0:\"\";s:12:\"status_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"25\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"pp-business-hours\";}}}'),(148,51,'_uabb_lite_converted','yes'),(149,51,'_wp_trash_meta_status','publish'),(150,51,'_wp_trash_meta_time','1621828270'),(151,51,'_wp_desired_post_slug','location'),(152,47,'_wp_trash_meta_status','publish'),(153,47,'_wp_trash_meta_time','1621924012'),(154,47,'_wp_desired_post_slug','contact'),(155,123,'_fl_builder_data','a:4:{s:13:\"5af1567b30dbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af1567b30dbc\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":199:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:13:\"bg_embed_code\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";a:2:{s:6:\"family\";s:8:\"Defaults\";s:6:\"weight\";s:8:\"Defaults\";}s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";i:100;s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";i:100;s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";}}s:13:\"5af16560a6743\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a6743\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af1567b30dbc\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af16560a683c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a683c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af16560a6743\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":80:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5af16560a66ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af16560a66ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af16560a683c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:4:\"html\";s:17:\"[ninja_form id=1]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";}}}'),(156,123,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(157,49,'_wp_trash_meta_status','publish'),(158,49,'_wp_trash_meta_time','1621924012'),(159,49,'_wp_desired_post_slug','service'),(160,124,'_fl_builder_data','a:4:{s:13:\"5af14ef6b68a7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b68a7\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":203:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:13:\"bg_embed_code\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:13:\"gradient_type\";s:6:\"linear\";s:14:\"gradient_color\";a:2:{s:7:\"primary\";s:6:\"d81660\";s:9:\"secondary\";s:6:\"7d22bd\";}s:16:\"linear_direction\";s:6:\"bottom\";s:14:\"border_opacity\";s:3:\"100\";s:9:\"is_enable\";s:2:\"no\";s:9:\"er_effect\";s:5:\"slide\";s:11:\"er_img_type\";s:4:\"none\";s:13:\"er_image_size\";s:0:\"\";s:12:\"er_icon_size\";s:0:\"\";s:16:\"er_icon_position\";s:4:\"left\";s:10:\"er_bg_type\";s:5:\"color\";s:14:\"er_title_align\";s:6:\"center\";s:11:\"er_bc_title\";s:0:\"\";s:17:\"er_bc_title_color\";s:0:\"\";s:18:\"er_bc_title_hcolor\";s:0:\"\";s:14:\"er_bc_bg_color\";s:0:\"\";s:15:\"er_bc_bg_hcolor\";s:0:\"\";s:10:\"er_bc_icon\";s:0:\"\";s:16:\"er_bc_icon_color\";s:0:\"\";s:17:\"er_bc_icon_hcolor\";s:0:\"\";s:11:\"er_bc_image\";s:0:\"\";s:14:\"er_bc_bg_image\";s:0:\"\";s:11:\"er_ac_title\";s:0:\"\";s:17:\"er_ac_title_color\";s:0:\"\";s:18:\"er_ac_title_hcolor\";s:0:\"\";s:14:\"er_ac_bg_color\";s:0:\"\";s:15:\"er_ac_bg_hcolor\";s:0:\"\";s:10:\"er_ac_icon\";s:0:\"\";s:16:\"er_ac_icon_color\";s:0:\"\";s:17:\"er_ac_icon_hcolor\";s:0:\"\";s:11:\"er_ac_image\";s:0:\"\";s:14:\"er_ac_bg_image\";s:0:\"\";s:19:\"er_title_typography\";s:0:\"\";s:12:\"er_font_size\";s:0:\"\";s:14:\"er_line_height\";s:0:\"\";s:14:\"er_padding_top\";s:0:\"\";s:17:\"er_padding_bottom\";s:0:\"\";s:15:\"er_padding_left\";s:0:\"\";s:16:\"er_padding_right\";s:0:\"\";s:16:\"enable_separator\";s:2:\"no\";s:14:\"separator_type\";s:4:\"none\";s:15:\"separator_color\";s:6:\"ffffff\";s:16:\"separator_shadow\";s:6:\"f4f4f4\";s:16:\"separator_height\";s:3:\"100\";s:18:\"separator_position\";s:3:\"top\";s:16:\"separator_tablet\";s:2:\"no\";s:23:\"separator_height_tablet\";s:0:\"\";s:16:\"separator_mobile\";s:2:\"no\";s:23:\"separator_height_mobile\";s:0:\"\";s:21:\"separator_type_bottom\";s:4:\"none\";s:22:\"separator_color_bottom\";s:6:\"ffffff\";s:23:\"separator_shadow_bottom\";s:6:\"f4f4f4\";s:23:\"separator_height_bottom\";s:3:\"100\";s:23:\"separator_tablet_bottom\";s:2:\"no\";s:30:\"separator_height_tablet_bottom\";s:0:\"\";s:23:\"separator_mobile_bottom\";s:2:\"no\";s:30:\"separator_height_mobile_bottom\";s:0:\"\";s:15:\"er_bc_image_src\";s:0:\"\";s:18:\"er_bc_bg_image_src\";s:0:\"\";s:15:\"er_ac_image_src\";s:0:\"\";s:18:\"er_ac_bg_image_src\";s:0:\"\";}}s:13:\"5af14ef6eaad1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eaad1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5af14ef6b68a7\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5af14ef6eabbf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6eabbf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5af14ef6eaad1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":80:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5af14ef6b676b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5af14ef6b676b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5af14ef6eabbf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:5982:\"<h1><strong><span style=\"font-size: 26px;\">SERVICES</span></strong></h1><br /><strong>Personal Consultation</strong><br /><br />Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".<br /><br /><strong>Retrofitting and Restoration</strong><br /><br />Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.<br /><br /><strong>Acquisitions and Reclamations</strong><br /><br />Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.<br /><br />Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.<br /><br /><strong>Dismantling Services</strong><br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.<br /><br />Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.<br /><br />We had only 3½ days to get everything out of this house including saving some pieces for the owners.<br /><br />Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT<br /><br /><strong>Sales & Liquidations & Deaccessions</strong><br /><br />Many times-over the years-we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?<br /><br />Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.<br /><br /><strong>Replications and Reproductions</strong><br /><br />We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.<br /><br />We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1525763831507_text\";s:0:\"\";}}}'),(161,124,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(162,125,'_edit_lock','1621924041:1'),(163,126,'_edit_lock','1621924491:1'),(164,126,'_edit_last','1'),(165,126,'site-post-title','disabled'),(166,126,'site-sidebar-layout','default'),(167,126,'site-content-layout','default'),(168,126,'ast-featured-img','disabled'),(169,126,'ast-breadcrumbs-content','disabled'),(170,126,'theme-transparent-header-meta','default'); /*!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=128 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-03-10 20:15:34','2021-03-11 01:15:34','<!-- 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!','','draft','open','open','','hello-world','','','2021-05-25 02:17:41','2021-05-25 06:17:41','',0,'http://irreplaceableartifacts.com/iawp/?p=1',0,'post','',1),(2,1,'2021-03-10 20:15:34','2021-03-11 01:15:34','<!-- 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=\"http://irreplaceableartifacts.com/iawp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','trash','closed','closed','','sample-page__trashed','','','2021-05-25 02:18:32','2021-05-25 06:18:32','',0,'http://irreplaceableartifacts.com/iawp/?page_id=2',0,'page','',0),(3,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://irreplaceableartifacts.com/iawp.</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-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://irreplaceableartifacts.com/iawp/?page_id=3',0,'page','',0),(4,1,'2021-05-24 04:07:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-05-24 04:07:39','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?p=4',0,'post','',0),(5,1,'2021-05-24 04:12:04','0000-00-00 00:00:00','\n <!-- wp:heading {\"align\":\"wide\",\"fontSize\":\"gigantic\",\"style\":{\"typography\":{\"lineHeight\":\"1.1\"}}} -->\n <h2 class=\"alignwide has-text-align-wide has-gigantic-font-size\" style=\"line-height:1.1\">Create your website with blocks</h2>\n <!-- /wp:heading -->\n\n <!-- wp:spacer -->\n <div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-columns-overlap\"} -->\n <div class=\"wp-block-columns alignwide are-vertically-aligned-center is-style-twentytwentyone-columns-overlap\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n <div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\"} -->\n <figure class=\"wp-block-image alignfull size-large\"><img src=\"http://irreplaceableartifacts.com/iawp/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg\" alt=\"“Roses Trémières” by Berthe Morisot\"/></figure>\n <!-- /wp:image -->\n\n <!-- wp:spacer -->\n <div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\",\"className\":\"is-style-twentytwentyone-image-frame\"} -->\n <figure class=\"wp-block-image alignfull size-large is-style-twentytwentyone-image-frame\"><img src=\"http://irreplaceableartifacts.com/iawp/wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg\" alt=\"“In the Bois de Boulogne” by Berthe Morisot\"/></figure>\n <!-- /wp:image --></div>\n <!-- /wp:column -->\n\n <!-- wp:column {\"verticalAlignment\":\"center\"} -->\n <div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:spacer -->\n <div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"alignfull size-full is-style-twentytwentyone-border\"} -->\n <figure class=\"wp-block-image size-large alignfull size-full is-style-twentytwentyone-border\"><img src=\"http://irreplaceableartifacts.com/iawp/wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg\" alt=\"“Young Woman in Mauve” by Berthe Morisot\"/></figure>\n <!-- /wp:image --></div>\n <!-- /wp:column --></div>\n <!-- /wp:columns -->\n\n <!-- wp:spacer {\"height\":50} -->\n <div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n <div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n <div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n <h3>Add block patterns</h3>\n <!-- /wp:heading -->\n\n <!-- wp:paragraph -->\n <p>Block patterns are pre-designed groups of blocks. To add one, select the Add Block button [+] in the toolbar at the top of the editor. Switch to the Patterns tab underneath the search bar, and choose a pattern.</p>\n <!-- /wp:paragraph --></div>\n <!-- /wp:column -->\n\n <!-- wp:column {\"verticalAlignment\":\"top\"} -->\n <div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n <h3>Frame your images</h3>\n <!-- /wp:heading -->\n\n <!-- wp:paragraph -->\n <p>Twenty Twenty-One includes stylish borders for your content. With an Image block selected, open the "Styles" panel within the Editor sidebar. Select the "Frame" block style to activate it.</p>\n <!-- /wp:paragraph --></div>\n <!-- /wp:column -->\n\n <!-- wp:column {\"verticalAlignment\":\"top\"} -->\n <div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n <h3>Overlap columns</h3>\n <!-- /wp:heading -->\n\n <!-- wp:paragraph -->\n <p>Twenty Twenty-One also includes an overlap style for column blocks. With a Columns block selected, open the "Styles" panel within the Editor sidebar. Choose the "Overlap" block style to try it out.</p>\n <!-- /wp:paragraph --></div>\n <!-- /wp:column --></div>\n <!-- /wp:columns -->\n\n <!-- wp:spacer -->\n <div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:cover {\"overlayColor\":\"green\",\"contentPosition\":\"center center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-border\"} -->\n <div class=\"wp-block-cover alignwide has-green-background-color has-background-dim is-style-twentytwentyone-border\"><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":20} -->\n <div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:paragraph {\"fontSize\":\"huge\"} -->\n <p class=\"has-huge-font-size\">Need help?</p>\n <!-- /wp:paragraph -->\n\n <!-- wp:spacer {\"height\":75} -->\n <div style=\"height:75px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer -->\n\n <!-- wp:columns -->\n <div class=\"wp-block-columns\"><!-- wp:column -->\n <div class=\"wp-block-column\"><!-- wp:paragraph -->\n <p><a href=\"https://wordpress.org/support/article/twenty-twenty-one/\">Read the Theme Documentation</a></p>\n <!-- /wp:paragraph --></div>\n <!-- /wp:column -->\n\n <!-- wp:column -->\n <div class=\"wp-block-column\"><!-- wp:paragraph -->\n <p><a href=\"https://wordpress.org/support/theme/twentytwentyone/\">Check out the Support Forums</a></p>\n <!-- /wp:paragraph --></div>\n <!-- /wp:column --></div>\n <!-- /wp:columns -->\n\n <!-- wp:spacer {\"height\":20} -->\n <div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n <!-- /wp:spacer --></div></div>\n <!-- /wp:cover -->','Create your website with blocks','','auto-draft','closed','closed','','','','','2021-05-24 04:12:03','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?page_id=5',0,'page','',0),(6,1,'2021-05-24 04:12:04','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About','','auto-draft','closed','closed','','','','','2021-05-24 04:12:03','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?page_id=6',0,'page','',0),(7,1,'2021-05-24 04:12:04','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.</p>\n<!-- /wp:paragraph -->','Contact','','auto-draft','closed','closed','','','','','2021-05-24 04:12:04','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?page_id=7',0,'page','',0),(8,1,'2021-05-24 04:12:04','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2021-05-24 04:12:04','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?page_id=8',0,'page','',0),(9,1,'2021-05-24 04:12:04','0000-00-00 00:00:00','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 5,\n 6,\n 7,\n 8\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Primary menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://irreplaceableartifacts.com/iawp/\",\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 6,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"About\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-3]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 8,\n \"position\": 2,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-4]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 7,\n \"position\": 3,\n \"nav_menu_term_id\": -1,\n \"title\": \"Contact\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"twentytwentyone::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Secondary menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"position\": 0,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-6]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"position\": 1,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-7]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"position\": 2,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"nav_menu_item[-8]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Email\",\n \"url\": \"mailto:wordpress@example.com\",\n \"position\": 3,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"twentytwentyone::nav_menu_locations[footer]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 5,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-05-24 04:12:04\"\n }\n}','','','auto-draft','closed','closed','','ffe0bdb5-2ae0-47c8-93d0-2707bb283abd','','','2021-05-24 04:12:04','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?p=9',0,'customize_changeset','',0),(13,1,'2021-05-25 02:03:11','2021-05-25 06:03:11','http://irreplaceableartifacts.com/iawp/wp-content/uploads/2021/05/bb-powerpack.zip','bb-powerpack.zip','','private','open','closed','','bb-powerpack-zip','','','2021-05-25 02:03:11','2021-05-25 06:03:11','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2021/05/bb-powerpack.zip',0,'attachment','',0),(14,1,'2021-05-25 02:03:52','2021-05-25 06:03:52','http://irreplaceableartifacts.com/iawp/wp-content/uploads/2021/05/bb-powerpack-1.zip','bb-powerpack.zip','','private','open','closed','','bb-powerpack-zip-2','','','2021-05-25 02:03:52','2021-05-25 06:03:52','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2021/05/bb-powerpack-1.zip',0,'attachment','',0),(16,1,'2021-05-25 02:11:49','2021-05-25 06:11:49','http://irreplaceableartifacts.com/iawp/wp-content/uploads/2021/05/bb-powerpack-2.zip','bb-powerpack.zip','','private','open','closed','','bb-powerpack-zip-3','','','2021-05-25 02:11:49','2021-05-25 06:11:49','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2021/05/bb-powerpack-2.zip',0,'attachment','',0),(17,1,'2021-05-25 02:17:41','2021-05-25 06:17:41','<!-- 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!','','inherit','closed','closed','','1-revision-v1','','','2021-05-25 02:17:41','2021-05-25 06:17:41','',1,'http://irreplaceableartifacts.com/iawp/?p=17',0,'revision','',0),(18,1,'2021-05-25 02:18:19','2021-05-25 06:18:19','<!-- 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=\"http://irreplaceableartifacts.com/iawp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-05-25 02:18:19','2021-05-25 06:18:19','',2,'http://irreplaceableartifacts.com/iawp/?p=18',0,'revision','',0),(29,2,'2018-02-06 03:40:34','2018-02-06 03:40:34','','Shop','','trash','closed','closed','','online-store__trashed','','','2018-02-06 03:40:34','2018-02-06 03:40:34','',0,'http://localhost/IA.store/shop/',0,'page','',0),(30,2,'2018-02-06 03:40:34','2018-02-06 03:40:34','[woocommerce_cart]','Cart','','trash','closed','closed','','cart__trashed','','','2018-02-06 03:40:34','2018-02-06 03:40:34','',0,'http://localhost/IA.store/cart/',0,'page','',0),(31,2,'2018-02-06 03:40:34','2018-02-06 03:40:34','[woocommerce_checkout]','Checkout','','trash','closed','closed','','checkout__trashed','','','2018-02-06 03:40:34','2018-02-06 03:40:34','',0,'http://localhost/IA.store/checkout/',0,'page','',0),(32,2,'2018-02-06 03:40:35','2018-02-06 03:40:35','[woocommerce_my_account]','My account','','trash','closed','closed','','my-account__trashed','','','2018-02-06 03:40:35','2018-02-06 03:40:35','',0,'http://localhost/IA.store/my-account/',0,'page','',0),(36,2,'2018-02-06 03:48:03','2018-02-06 03:48:03','','IrreplaceableArtifacts_Banner450','','inherit','open','closed','','irreplaceableartifacts_banner450','','','2018-02-06 03:48:03','2018-02-06 03:48:03','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/IrreplaceableArtifacts_Banner450-e1526628538225.jpg',0,'attachment','image/jpeg',0),(39,2,'2018-02-06 03:49:22','2018-02-06 03:49:22','http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/cropped-IA-Logo-Square-800_LR.jpg','cropped-IA-Logo-Square-800_LR.jpg','','inherit','open','closed','','cropped-ia-logo-square-800_lr-jpg','','','2018-02-06 03:49:22','2018-02-06 03:49:22','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/cropped-IA-Logo-Square-800_LR.jpg',0,'attachment','image/jpeg',0),(47,2,'2018-02-06 03:54:54','2018-02-06 03:54:54','\n [ninja_form id=1]\n','Contact','','trash','closed','closed','','contact__trashed','','','2021-05-25 02:26:52','2021-05-25 06:26:52','',0,'http://localhost/IA.store/?page_id=47',0,'page','',0),(49,2,'2018-02-06 03:55:21','2018-02-06 03:55:21','\n <h1><strong>SERVICES</strong></h1>\n<p><strong>Personal Consultation</strong></p>\n<p>Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".</p>\n<p><strong>Retrofitting and Restoration</strong></p>\n<p>Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.</p>\n<p><strong>Acquisitions and Reclamations</strong></p>\n<p>Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.</p>\n<p>Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.</p>\n<p><strong>Dismantling Services</strong></p>\n<p>If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.</p>\n<p>Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform “The Impossible”, we are able to dispatch a team on a moment’s notice to do all levels of work.</p>\n<p>If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.</p>\n<p>Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.</p>\n<p>We had only 3½ days to get everything out of this house including saving some pieces for the owners.</p>\n<p>Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT</p>\n<p><strong>Sales & Liquidations & Deaccessions</strong></p>\n<p>Many times—over the years—we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?</p>\n<p>Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.</p>\n<p><strong>Replications and Reproductions</strong></p>\n<p>We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.</p>\n<p>We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".</p>\n','Service','','trash','closed','closed','','service__trashed','','','2021-05-25 02:26:52','2021-05-25 06:26:52','',0,'http://localhost/IA.store/?page_id=49',0,'page','',0),(51,2,'2018-02-06 03:55:37','2018-02-06 03:55:37','\n <img src=\"http://localhost/IA.store/wp-content/uploads/2018/05/MCTnew_1282927683_8-300x242.jpg\" alt=\"MCTnew_1282927683_8\" itemprop=\"image\" title=\"MCTnew_1282927683_8\" />\n <h1>Irreplaceable Artifacts™</h1>\n<p>428 Main Street<br />\nMiddletown, CT 06457<br />\nTel: 860-344-8576<br />\nFax: 860-638-0834<br />\ninfo@irreplaceableartifacts.com</p>\n <iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Irreplaceable%20Artifacts%20428%20Main%20Street%2C%20Middletown%2C%20CT&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\n <img src=\"http://localhost/IA.store/wp-content/uploads/2018/05/DD_IA_new_1297358359_8-300x252.jpg\" alt=\"DD_IA_new_1297358359_8\" itemprop=\"image\" title=\"DD_IA_new_1297358359_8\" />\n <h1>The Demolition Depot & Irreplaceable Artifacts™</h1>\n<p>216 East 125th Street<br />\n(between 2nd & 3rd Avenues)<br />\nNew York, NY 10035-1738<br />\nTel: 212-777-2900<br />\nFax: 212-860-1560<br />\ninfo@demolitiondepot.com</p>\n <iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&source=s_q&q=Demolition%20Depot%2C%20216%20East%20125th%20Street%2C%20New%20York%2C%20NY&aq=0&ie=UTF8&t=m&z=15&iwloc=A&output=embed\"></iframe>\n <p>If you are looking to sell or consign an item please send pictures and measurements to acquisitions@demolitiondepot.com</p>\n','Location','','trash','closed','closed','','location__trashed','','','2018-02-06 03:55:37','2018-02-06 03:55:37','',0,'http://localhost/IA.store/?page_id=51',0,'page','',0),(56,2,'2018-02-06 05:20:17','2018-02-06 05:20:17','','SONY DSC','SONY DSC','inherit','open','closed','','sony-dsc-2','','','2018-02-06 05:20:17','2018-02-06 05:20:17','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/102167D.jpg',0,'attachment','image/jpeg',0),(57,2,'2018-02-06 05:20:19','2018-02-06 05:20:19','','SONY DSC','SONY DSC','inherit','open','closed','','sony-dsc-3','','','2018-02-06 05:20:19','2018-02-06 05:20:19','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/102167E.jpg',0,'attachment','image/jpeg',0),(58,2,'2018-02-06 05:20:22','2018-02-06 05:20:22','','SONY DSC','SONY DSC','inherit','open','closed','','sony-dsc-4','','','2018-02-06 05:20:22','2018-02-06 05:20:22','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/102167-1.jpg',0,'attachment','image/jpeg',0),(59,2,'2018-02-06 05:20:24','2018-02-06 05:20:24','','SONY DSC','SONY DSC','inherit','open','closed','','sony-dsc-5','','','2018-02-06 05:20:24','2018-02-06 05:20:24','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/102167B.jpg',0,'attachment','image/jpeg',0),(60,2,'2018-02-06 05:20:26','2018-02-06 05:20:26','','SONY DSC','SONY DSC','inherit','open','closed','','sony-dsc-6','','','2018-02-06 05:20:26','2018-02-06 05:20:26','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/02/102167C.jpg',0,'attachment','image/jpeg',0),(65,2,'2018-05-08 06:13:28','2018-05-08 06:13:28','','Irreplaceable Artifacts','','inherit','open','closed','','ia-logo-square-800_lr-2','','','2018-05-08 06:13:28','2018-05-08 06:13:28','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/IA-Logo-Square-800_LR.jpg',0,'attachment','image/jpeg',0),(66,2,'2018-05-08 06:13:58','2018-05-08 06:13:58','http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/cropped-IA-Logo-Square-800_LR.jpg','cropped-IA-Logo-Square-800_LR.jpg','','inherit','open','closed','','cropped-ia-logo-square-800_lr-jpg-2','','','2018-05-08 06:13:58','2018-05-08 06:13:58','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/cropped-IA-Logo-Square-800_LR.jpg',0,'attachment','image/jpeg',0),(69,2,'2018-05-08 06:32:03','2018-05-08 06:32:03','','irr_artifacts_bannerdesign_v13','','inherit','open','closed','','irr_artifacts_bannerdesign_v13','','','2018-05-08 06:32:03','2018-05-08 06:32:03','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/irr_artifacts_bannerdesign_v13.jpg',0,'attachment','image/jpeg',0),(70,2,'2018-05-08 06:32:06','2018-05-08 06:32:06','','irr_artifacts_bannerdesign_v3','','inherit','open','closed','','irr_artifacts_bannerdesign_v3','','','2018-05-08 06:32:06','2018-05-08 06:32:06','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/irr_artifacts_bannerdesign_v3.jpg',0,'attachment','image/jpeg',0),(71,2,'2018-05-08 06:32:09','2018-05-08 06:32:09','','irr_artifacts_bannerdesign_v09','','inherit','open','closed','','irr_artifacts_bannerdesign_v09','','','2018-05-08 06:32:09','2018-05-08 06:32:09','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/irr_artifacts_bannerdesign_v09.jpg',0,'attachment','image/jpeg',0),(72,2,'2018-05-08 06:32:12','2018-05-08 06:32:12','','irr_artifacts_bannerdesign_v10','','inherit','open','closed','','irr_artifacts_bannerdesign_v10','','','2018-05-08 06:32:12','2018-05-08 06:32:12','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/irr_artifacts_bannerdesign_v10.jpg',0,'attachment','image/jpeg',0),(73,2,'2018-05-08 06:32:14','2018-05-08 06:32:14','','irr_artifacts_bannerdesign_v11','','inherit','open','closed','','irr_artifacts_bannerdesign_v11','','','2018-05-08 06:32:14','2018-05-08 06:32:14','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/irr_artifacts_bannerdesign_v11.jpg',0,'attachment','image/jpeg',0),(81,2,'2018-05-08 06:43:33','2018-05-08 06:43:33','','cropped-irr_artifacts_bannerdesign_v11.jpg','','inherit','open','closed','','cropped-irr_artifacts_bannerdesign_v11-jpg','','','2018-05-08 06:43:33','2018-05-08 06:43:33','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/cropped-irr_artifacts_bannerdesign_v11.jpg',0,'attachment','image/jpeg',0),(86,2,'2018-05-08 07:33:17','2018-05-08 07:33:17','','MCTnew_1282927683_8','','inherit','open','closed','','mctnew_1282927683_8','','','2018-05-08 07:33:17','2018-05-08 07:33:17','',51,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/MCTnew_1282927683_8.jpg',0,'attachment','image/jpeg',0),(87,2,'2018-05-08 07:33:20','2018-05-08 07:33:20','','DD_IA_new_1297358359_8','','inherit','open','closed','','dd_ia_new_1297358359_8','','','2018-05-08 07:33:20','2018-05-08 07:33:20','',51,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/DD_IA_new_1297358359_8.jpg',0,'attachment','image/jpeg',0),(119,2,'2018-05-18 02:57:03','2018-05-18 06:57:03','','102437','','inherit','open','closed','','102437','','','2018-05-18 02:57:03','2018-05-18 06:57:03','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/102437-1.jpg',0,'attachment','image/jpeg',0),(120,2,'2018-05-18 02:57:12','2018-05-18 06:57:12','','102525','','inherit','open','closed','','102525-2','','','2018-05-18 02:57:12','2018-05-18 06:57:12','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/102525-1.jpg',0,'attachment','image/jpeg',0),(121,2,'2018-05-18 02:57:21','2018-05-18 06:57:21','','101502','','inherit','open','closed','','101502','','','2018-05-18 02:57:21','2018-05-18 06:57:21','',0,'http://irreplaceableartifacts.com/iawp/wp-content/uploads/2018/05/101502-1.jpg',0,'attachment','image/jpeg',0),(122,2,'2018-02-06 03:26:00','2018-02-06 03:26:00','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:\n\n<blockquote>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.)</blockquote>\n\n...or something like this:\n\n<blockquote>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.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://http://irreplaceableartifacts.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','closed','open','','sample-page__trashed-2','','','2018-02-06 03:26:00','2018-02-06 03:26:00','',0,'http://localhost/IA.store/?page_id=2',0,'page','',0),(123,1,'2021-05-25 02:26:52','2021-05-25 06:26:52','\n [ninja_form id=1]\n','Contact','','inherit','closed','closed','','47-revision-v1','','','2021-05-25 02:26:52','2021-05-25 06:26:52','',47,'http://irreplaceableartifacts.com/iawp/?p=123',0,'revision','',0),(124,1,'2021-05-25 02:26:52','2021-05-25 06:26:52','\n <h1><strong>SERVICES</strong></h1>\n<p><strong>Personal Consultation</strong></p>\n<p>Running this business has meant that we\'ve needed to become experts about how to re-use our pieces. Many can just be displayed as art, which they are, but it is also interesting to try to integrate an artifact into new construction or restoration. Our experience in doing just that can save you time and energy if you bring us your projects early on so that we can help you find pieces that will complement your ideas. Many architectural elements also lend themselves to being re-used in a totally different context; a column capital as a table base, grilles incorporated into folding doors or a window frame made into a mirror. These are just a few of the ideas that we\'ve come up with and can share with you. You can see some examples in our book \"Irreplaceable Artifacts: Decorating the Home with Architectural Ornament\".</p>\n<p><strong>Retrofitting and Restoration</strong></p>\n<p>Over the years we have assembled a list of trades\' people who are skilled at restoring, modifying or installing the many unique pieces that we sell. Whether it is an entire paneled room, a fireplace, stained glass or vintage plumbing, we have worked with the best in the field. Please ask us for recommendations and suggestions.</p>\n<p><strong>Acquisitions and Reclamations</strong></p>\n<p>Since our beginning over 35 years ago we have held fast and steady to our principles: being committed to saving what we can in this world from senseless destruction and from the landfill. Whether demolition is senseless, controversial, needed or elective, we have no control over these decisions. However, we have a long established track record of saving the best of a building and giving the pieces a new life for future generations to enjoy. Since that was the original intent of architectural ornament we have played a major part in raising the public\'s awareness of architectural ornament and making preservation a household word.</p>\n<p>Additionally, many of our pieces have found new homes in various museums around the world including thousands of fine residences and commercial establishments.</p>\n<p><strong>Dismantling Services</strong></p>\n<p>If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.</p>\n<p>Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform “The Impossible”, we are able to dispatch a team on a moment’s notice to do all levels of work.</p>\n<p>If you intend to save some or all of the ornament from a building(s) and need it professionally removed, we can do it for you: from a paneled room, to a marble fireplace to a built-in mosaic.</p>\n<p>Since our success depends on a wide variety of skills and experience saving pieces from old buildings that we dismantle, undoubtedly the success is heavily attributed to our extraction expertise. More often than we would like, we are placed under tight deadlines in construction schedules. As of this printing the McCutcheon House is a prime example of having to perform \"The Impossible\", we are able to dispatch a team on a moment\'s notice to do all levels of work.</p>\n<p>We had only 3½ days to get everything out of this house including saving some pieces for the owners.</p>\n<p>Some of our work for others in the past includes The New York City Landmarks Preservation Commission, NY State Dormitory Authority, NYC Department of Parks and Recreation, Bear Stearns, Turner Construction, HRH Construction, Hartz Mountain Industries, and many private individuals. .... pic of house in CT</p>\n<p><strong>Sales & Liquidations & Deaccessions</strong></p>\n<p>Many times—over the years—we have been commissioned to liquidate and sell either collections or complete building contents. For example: a church, a hotel, or another institution is about to undergo a major renovation or demolition, and we are called in to maximize the value of an asset normally intended for the landfill. Why spend money throwing out materials that can be re-cycled and re-used?</p>\n<p>Another part of our service is arranging to channel materials to various non-profits for a tax credit for the donation. Whether you are an owner\'s representative, architect, interior designer or another trade you can be a hero for yourself, your client, and the environment by turning them on to us for a free evaluation of their properties.</p>\n<p><strong>Replications and Reproductions</strong></p>\n<p>We took the initiative many years ago to collect numerous great old and original lights that were made as long as over 100 years ago and to authentically replicate them. If you have an entryway that is missing one or all of the lights we can replicate almost anything.</p>\n<p>We have assembled a nice collection of originals that we sell and have copies of. This way the best result is achieved every time one passes by. Great entry lights always define and set the mood for the rest of the building or house and maintaining the first impression when one sees a structure is vitally important. We invite you to browse the web site to see a fuller representation of what our collection has to offer. You are also invited to email us photos of your building and we can send you back some recommendations that we feel are suitable. If you are going for Landmark approvals on historic buildings you can be assured that our pieces always pass the scrutiny of any Board or Panel and we are \"the preferred source\".</p>\n','Service','','inherit','closed','closed','','49-revision-v1','','','2021-05-25 02:26:52','2021-05-25 06:26:52','',49,'http://irreplaceableartifacts.com/iawp/?p=124',0,'revision','',0),(125,1,'2021-05-25 02:27:20','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2021-05-25 02:27:20','0000-00-00 00:00:00','',0,'http://irreplaceableartifacts.com/iawp/?page_id=125',0,'page','',0),(126,1,'2021-05-25 02:34:51','0000-00-00 00:00:00','','Auto Draft','','draft','closed','closed','','','','','2021-05-25 02:34:51','2021-05-25 06:34:51','',0,'http://irreplaceableartifacts.com/iawp/?page_id=126',0,'page','',0),(127,1,'2021-05-25 02:32:08','2021-05-25 06:32:08','','Auto Draft','','inherit','closed','closed','','126-revision-v1','','','2021-05-25 02:32:08','2021-05-25 06:32:08','',126,'http://irreplaceableartifacts.com/iawp/?p=127',0,'revision','',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); /*!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=2 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,0); /*!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 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 */; /*!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=2 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); /*!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=37 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','anitam'),(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','coffee'),(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,'default_password_nag',''),(16,1,'show_welcome_panel','0'),(17,1,'session_tokens','a:3:{s:64:\"02c845eacd20703bda49f93afaf00d65c208822f016d202d21783e0747501d08\";a:4:{s:10:\"expiration\";i:1623038858;s:2:\"ip\";s:13:\"123.20.245.35\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1621829258;}s:64:\"dcc365af23e90e6b876583a86c68c5aa8639178557bef6d392bcf75123216c28\";a:4:{s:10:\"expiration\";i:1623039027;s:2:\"ip\";s:13:\"123.20.245.35\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1621829427;}s:64:\"43f647d8c08d84433ed5b1e77085d5959241c4cbdd0e1c201c5e2c6f94287fd4\";a:4:{s:10:\"expiration\";i:1622002248;s:2:\"ip\";s:13:\"123.20.245.35\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1621829448;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','4'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"123.20.245.0\";}'),(20,1,'astra-sites-on-active','notice-dismissed'),(21,1,'closedpostboxes_dashboard','a:0:{}'),(22,1,'metaboxhidden_dashboard','a:2:{i:0;s:18:\"dashboard_activity\";i:1;s:17:\"dashboard_primary\";}'),(23,2,'nickname','admin'),(24,2,'first_name',''),(25,2,'last_name',''),(26,2,'description',''),(27,2,'rich_editing','true'),(28,2,'syntax_highlighting','true'),(29,2,'comment_shortcuts','false'),(30,2,'admin_color','fresh'),(31,2,'use_ssl','0'),(32,2,'show_admin_bar_front','true'),(33,2,'locale',''),(34,2,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(35,2,'wp_user_level','0'),(36,2,'dismissed_wp_pointers',''); /*!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,'anitam','$P$B3bTyFUW8dzj9ts4NdiFEXPRRIathw/','anitam','photos@demolitiondepot.com','http://irreplaceableartifacts.com/iawp','2021-03-10 20:15:34','',0,'anitam'),(2,'admin','$P$Br8TZWdzCfy.bbTK/rHnzC2XRDYqd..','admin','','','2021-05-25 06:24:53','',0,'admin'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_004c356_0' -- /*!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 2021-05-25 3:01:29